Keycloak REST Services 1.2.0.Final

Path: / admin / realms / {realm} / clients-by-id / {app-name} / scope-mappings / clients-by-id / {id} / composite

Get effective client roles that are associated with the client's scope for a specific client.

Path parameters:
realm - realm name (not id!)
app-name -
id -

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/clients-by-id/{app-name}/scope-mappings/clients-by-id/{id}/compositeGet effective client roles that are associated with the client's scope for a specific client.

Method Detail

GET /admin/realms/{realm}/clients-by-id/{app-name}/scope-mappings/clients-by-id/{id}/composite

Get effective client roles that are associated with the client's scope for a specific client.

HTTP Example:
GET /admin/realms/{realm}/clients-by-id/{app-name}/scope-mappings/clients-by-id/{id}/composite
API Example:

ScopeMappedClientResource.getCompositeClientScopeMappings({'realm': /* name realm name (not id!) */,
  'app-name': /* name */,
  'id': …});

Output:
List<RoleRepresentation> -
Produces:
application/json

Keycloak REST Services 1.2.0.Final